home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / kaffe / errors.h < prev    next >
C/C++ Source or Header  |  1996-02-12  |  1KB  |  35 lines

  1. /*
  2.  * errors.h
  3.  * Error return codes.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __errors_h
  15. #define __errors_h
  16.  
  17. struct _object;
  18.  
  19. extern struct _object*    ClassFormatError;
  20. extern struct _object*    ClassFormatError;
  21. extern struct _object*    LinkageError;
  22. extern struct _object*    NoClassDefFoundError;
  23. extern struct _object*    NoSuchFieldError;
  24. extern struct _object*    NoSuchMethodError;
  25. extern struct _object*    OutOfMemoryError;
  26. extern struct _object*    UnsatisfiedLinkError;
  27. extern struct _object*    VirtualMachineError;
  28. extern struct _object*    ClassCircularityError;
  29. extern struct _object*    NegativeArraySizeException;
  30. extern struct _object*    ClassCastException;
  31. extern struct _object*    IllegalMonitorStateException;
  32. extern struct _object*    NullPointerException;
  33.  
  34. #endif
  35.